home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
misc
/
emu
/
ATUtilities.lha
/
ATUtilities
/
BASIC
/
BMWI.BAS
< prev
next >
Wrap
BASIC Source File
|
2000-09-26
|
238b
|
19 lines
cls
open "d:\bmwi.sav" for binary access read as #1
on error goto f
q=3
get$ #1,q,d$
while not eof(1)
get$ #1,4,x$
l&=CVL(x$)
IF l&>=100000 and l&<=2000000 then print q,l&
q=q+4
wend
f:
close #1
print "Okay"
end